home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
internet
/
irc_i_dodatki
/
mcf4amirc
/
rexx
/
mcf_finger.amirx
< prev
next >
Wrap
Text File
|
1996-12-14
|
680b
|
11 lines
/* MCF_Finger.AMIRX
// $VER: MCF_Finger.AMIRX 4.9 (23.11.96)
\\ Written by Donald T. Becker (dtbecker@prolog.net) IRC: StarDustr
// Please mail any bug reports/comments to the above address with a subject
\\ header of MCF.AMIRX.
//
\\ ** What to do with this file?
// Put this script in Rexx:
\\ It will be used by MCF.AMIRX.
*/
;xsists=showlist('A',AmiTCP)+showlist('V',AmiTCP);if xsists=0 then exit;if ~exists("AmiTCP:bin/Finger") then exit;OPTIONS RESULTS;parse arg MCFenv junk LUser junk;address (MCFenv);open(rslv,'APIPE:AmiTCP:bin/finger ',R);x1=readln(rslv);x2=readln(rslv);close(rslv);x1=strip(x1);x2=strip(x2);"RAW PRIVMSG "LUser" :"x1;"RAW PRIVMSG "LUser" :"x2;exit